home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / strings2.zip / LOOP.BAT < prev    next >
DOS Batch File  |  1992-11-05  |  336b  |  12 lines

  1. @echo off
  2. REM ===================================================================
  3. REM Loop 10 times using STRINGS to increment a loop variable.
  4. REM ===================================================================
  5.  
  6. SET count=1
  7. :LABEL1
  8. ECHO %COUNT%
  9. STRINGS count = ADD %COUNT%, 1
  10. IF NOT .%COUNT%==.10 GOTO LABEL1
  11. SET count=
  12.